home *** CD-ROM | disk | FTP | other *** search
- /* Generated by HTML Notepad V2.0 1996 */
- /* To be found at www.cranial.com/software/htmlnote */
- /* Go on admit it, you are impressed! */
- void HTMLout(FILE*);
-
- main()
- { printf( "Content-type : text/html\n\n" );
- HTMLout( stdout );
- return 0;
- }
-
- void HTMLout( FILE *fout );
- {
- fprintf( fout, "<html>\n");
- fprintf( fout, "<head>\n");
- fprintf( fout, "<meta http-equiv="generator" content="HTML Notepad v2.0">\n");
- fprintf( fout, "<meta http-equiv="author" content="Adam Fraser, Cranial Publishing">\n");
- fprintf( fout, "<link rev="made" href="mailto:adam@cranial.demon.co.uk">\n");
- fprintf( fout, "<title>Hello World</title>\n");
- fprintf( fout, "</head>\n");
- fprintf( fout, "<body>\n");
- fprintf( fout, "<p>Hello World</p>\n");
- fprintf( fout, "</body>\n");
- fprintf( fout, "</html>\n");
- fprintf( fout, "\n");
- }